home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gallery_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(11810);
  9.  script_bugtraq_id(8288);
  10.  script_version ("$Revision: 1.8 $");
  11.  script_cve_id("CAN-2003-0614");
  12.  name["english"] = "gallery xss";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is running the Gallery web-based photo album.
  18.  
  19. There is a flaw in this version which makes it vulnerable to
  20. a cross site scripting attack which may allow an attacker
  21. to steal the cookies from the legitimate users of this system.
  22.  
  23. Solution : Upgrade to Gallery 1.3.4p1 or newer
  24. Risk factor : Low";
  25.  
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for the presence of search.php";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_ATTACK);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  39.  
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57.  
  58. if(!get_port_state(port))exit(0);
  59. if(!can_host_php(port:port)) exit(0);
  60.  
  61. if(http_is_dead(port:port))exit(0);
  62. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  63.  
  64. function check(url)
  65. {
  66. req = http_get(item:string(url, "/search.php?searchstring=<script>foo</script>"),
  67.          port:port);
  68. r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  69. if ( r == NULL ) exit(0);
  70.  if("<script>foo</script>" >< r)
  71.      {
  72.      security_warning(port);
  73.     exit(0);
  74.     }
  75.  
  76. }
  77.  
  78. check(url:"");
  79. foreach dir (cgi_dirs())
  80. {
  81.  check(url:dir);
  82. }
  83.